home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / awk210.arc / RAND.AWK < prev    next >
Text File  |  1988-12-29  |  99b  |  5 lines

  1. BEGIN { srand()
  2.         for (i = 1; i < 200; i++)
  3.              print int(101 * rand())
  4.       }
  5.